home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / GNUDBM / GNUDBM~ / <tarZ$use> / files / GNUDbm / C / Delete < prev    next >
Text File  |  1990-03-01  |  2KB  |  44 lines

  1. /* delete.c - Remove the key and its associated data from the database.
  2.    This is the original unix interface name.  */
  3.  
  4. /*  GNU DBM  - DataBase Manager (database subroutines) by Philip A. Nelson
  5.     Copyright (C) 1989  Free Software Foundation, Inc.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20.     You may contact the author by:
  21.        e-mail:  phil@wwu.edu
  22.       us-mail:  Philip A. Nelson
  23.                 Computer Science Department
  24.                 Western Washington University
  25.                 Bellingham, WA 98226
  26.         phone:  (206) 676-3035
  27.  
  28. *************************************************************************/
  29.  
  30. #include "gdbm.h"
  31. #include "extern.h"
  32. #include "gdbmutils.h"
  33.  
  34. #include <stdio.h>
  35.  
  36. /* Remove the KEYed item and the KEY from the database.  The file on disk is
  37.    updated to reflect the structure of the new database before returning from
  38.    this procedure.  */
  39.  
  40. int delete(datum key)
  41. {
  42.     return gdbm_delete(_dbm_file, key);
  43. }
  44.